Version

ObservableCollectionExtended<T> Class Members

The following tables list the members exposed by ObservableCollectionExtended<T>.

Public Constructors
 NameDescription
Public ConstructorObservableCollectionExtended<T> ConstructorOverloaded.   
Public Properties
 NameDescription
Public PropertyCountGets the number of elements actually contained in the Collection. (Inherited from System.Collections.ObjectModel.Collection<T>)
Public PropertyIsUpdatingReturns true if the change notifications have been suspended using the BeginUpdate method.  
Public PropertyItemGets or sets the element at the specified index. (Inherited from System.Collections.ObjectModel.Collection<T>)
Protected Properties
 NameDescription
Protected PropertyItemsGets a IList wrapper around the Collection. (Inherited from System.Collections.ObjectModel.Collection<T>)
Protected PropertyNotifyItemsChangedReturns a boolean indicating whether the derived collection should have its OnItemAdded and OnItemRemoved methods invoked.  
Public Methods
 NameDescription
Public MethodAddAdds an object to the end of the Collection. (Inherited from System.Collections.ObjectModel.Collection<T>)
Public MethodAddRangeAdds the elements of a collection to the end of this collection.  
Public MethodBeginUpdatePrevents change notifications (e.g. CollectionChanged and System.ComponentModel.INotifyPropertyChanged.PropertyChanged) from being raised.  
Public MethodBinarySearchOverloaded. Searches the entire list for the specified element and returns the zero based index.  
Public MethodClearRemoves all elements from the Collection. (Inherited from System.Collections.ObjectModel.Collection<T>)
Public MethodContainsDetermines whether an element is in the Collection. (Inherited from System.Collections.ObjectModel.Collection<T>)
Public MethodCopyToCopies the entire Collection to a compatible one-dimensional System.Array, starting at the specified index of the target array. (Inherited from System.Collections.ObjectModel.Collection<T>)
Public MethodEndUpdateResumes change notifications (e.g. CollectionChanged and System.ComponentModel.INotifyPropertyChanged.PropertyChanged).  
Public MethodGetEnumeratorReturns an enumerator that iterates through the Collection. (Inherited from System.Collections.ObjectModel.Collection<T>)
Public MethodIndexOfSearches for the specified object and returns the zero-based index of the first occurrence within the entire Collection. (Inherited from System.Collections.ObjectModel.Collection<T>)
Public MethodInsertInserts an element into the Collection at the specified index. (Inherited from System.Collections.ObjectModel.Collection<T>)
Public MethodInsertRangeInserts the elements of a collection into the collection at the specified index.  
Public MethodMove (Inherited from System.Collections.ObjectModel.ObservableCollection<T>)
Public MethodReInitializeClears and repopulates the collection with the specified item.  
Public MethodRemoveRemoves the first occurrence of a specific object from the Collection. (Inherited from System.Collections.ObjectModel.Collection<T>)
Public MethodRemoveAtRemoves the element at the specified index of the Collection. (Inherited from System.Collections.ObjectModel.Collection<T>)
Public MethodRemoveRangeRemoves a contiguous block of items from the collection.  
Protected Methods
 NameDescription
Protected MethodBlockReentrancy (Inherited from System.Collections.ObjectModel.ObservableCollection<T>)
Protected MethodCheckReentrancy (Inherited from System.Collections.ObjectModel.ObservableCollection<T>)
Protected MethodClearItemsOverridden. Removes all the items from the collection.  
Protected MethodInsertItemOverridden. Inserts a new item at the specified index in the collection.  
Protected MethodMoveItemOverridden. Moves an item from one index in the collection to a new location.  
Protected MethodOnBeginUpdateInvoked when BeginUpdate is first called and IsUpdating becomes true.  
Protected MethodOnCollectionChangedOverridden. Raises the CollectionChanged event.  
Protected MethodOnEndUpdateInvoked when EndUpdate is called and IsUpdating becomes false.  
Protected MethodOnItemAddedInvoked when an item has been added if the NotifyItemsChanged returns true.  
Protected MethodOnItemAddingInvoked when an item is about to be added if the NotifyItemsChanged returns true.  
Protected MethodOnItemPropertyChangedRaises the ItemPropertyChanged event with the specified arguments.  
Protected MethodOnItemRemovedInvoked when an item has been removed if the NotifyItemsChanged returns true.  
Protected MethodOnItemRemovingInvoked when an item is about to be removed if the NotifyItemsChanged returns true.  
Protected MethodOnPropertyChangedOverridden. Raises the System.ComponentModel.INotifyPropertyChanged.PropertyChanged event.  
Protected MethodRemoveItemOverridden. Removes an item at the specified index.  
Protected MethodSetItemOverridden. Replaces an item at the specified index in the collection  
Public Events
Protected Events
See Also